home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
ASP Advantage 1994 2nd Q2
/
The Association of Shareware Professionals - The Official ASP Advantage (2nd Quarter)(1994).bin
/
files
/
writions
/
evol202a
/
multiply.pas
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Pascal/Delphi Source File
|
1993-11-28
|
378 b
|
13 lines
Unit Multiply;
interface
Function MultiplyTwoNumbers(OneNumber : Integer;AnotherNumber : Integer) : Integer;
implementation
Function MultiplyTwoNumbers(OneNumber : Integer;AnotherNumber : Integer) : Integer;
begin
MultiplyTwoNumbers :=
OneNumber*
AnotherNumber;
end;
begin
end.